body{
    width: 99%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: grey;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 70px;
}
h1{
    background-color: lightgrey;
    width: 400px;
    height: 70px;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    border: solid black 1px;
}
h2{
    background-color:white;
    width: 70%;
    text-align: center;
    border-radius: 20px;
    border: 1px solid black;
}
.ruta{
    margin-top: 40px;
    background-color: lightgrey;
    width: 50%;
    height: fit-content;
    min-height: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: 3px solid black;
    border-radius: 20px;
    padding: 20px;
}
nav{
    width: 100%;
    position: absolute;
    background-color: black;
    color: white;
    height: 50px;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
}
a{
    color: white;
    margin-left: 50px;
}